home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (4th Edition)
/
The Business Master - 4th Edition.iso
/
files
/
utilreen
/
laserfnt
/
register.bat
< prev
next >
Wrap
DOS Batch File
|
1993-06-11
|
869b
|
21 lines
echo off
cls
echo ┌───────────────────────────────────────────────────────────────────────┐
echo │ We are now ready to print a copy of the registration form for this │
echo │ shareware product. Make sure your printer is on and ready to run. │
echo │ Then hit the return key to print a copy of the shareware registration │
echo │ form. │
echo │ │
echo │ If you *don't* want to print anything hit the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └───────────────────────────────────────────────────────────────────────┘
if "%1"=="" goto bad
pause
copy register.doc %1:
goto good
:bad
echo You must pass a printer port to this batch file
:good